Completed
Push — master ( d771b6...a267a2 )
by Junior
10s
created

index.js ➔ ???   A

Complexity

Conditions 1
Paths 0

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
c 1
b 0
f 1
nc 0
dl 0
loc 1
rs 10
nop 1
1
import {combineReducers} from 'redux'
2
import {createStore} from 'redux'
3
4
import Github from './Example'
5
6
const rootReducer = combineReducers({
7
  Github
8
})
9
10
export default createStore(rootReducer)
11